/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: Roboto, sans-serif;
    background: #2F4241;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container Styles */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* Main Container Styles */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 100px; /* Adjust padding to avoid overlap with the topbar */
}

/* Topbar Styles */
.topbar {
    width: 100%;
    background: #BDFF00;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.topbar .container {
    display: flex;
    justify-content: space-between; /* Space between title and menu */
    align-items: center;
    padding: 20px;
}

.circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 50%;
}

.title {
    color: black;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.28px;
}

/* Menu Styles */
.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-item {
    color: black;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #2F4241; /* Change color on hover */
}

/* Search Styles */
.search {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.search-text {
    color: rgba(0, 0, 0, 0.50);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.14px;
    border: none;
    outline: none;
}

.search-icon {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.70);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-icon:hover {
    background: #2F4241; /* Change background on hover */
}

/* Contact Us Section Styles */
.contact-us {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3F5A59;
}

.contact-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #4F6A69;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    color: #ffffff;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0.36px;
}

.contact-header p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.18px;
    color: #ffffff;
}

.contact-content {
    display: flex;
    gap: 40px; /* Increased gap between left and right sections */
}

.contact-left, .contact-right {
    flex: 1;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Increased gap between input fields */
}

.contact-item label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.16px;
}

.contact-item input,
.contact-item textarea {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.70);
}

.contact-item textarea {
    height: 120px;
    resize: none;
}

.send-button {
    padding: 14px;
    background: #BDFF00;
    border-radius: 8px;
    color: black;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-button:hover {
    background: #2F4241;
    color: white;
}

/* Footer Styles */
.footer {
    width: 100%;
    background: #2F4241;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
}

.footer .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}